src/app/shared/interface/IStatistics.ts
Properties |
| wordCount |
wordCount:
|
Type : IWordCount
|
|
Defined in src/app/shared/interface/IStatistics.ts:5
|
| wordPercentage |
wordPercentage:
|
Type : IWordPercentage
|
|
Defined in src/app/shared/interface/IStatistics.ts:6
|
import { IWordPercentage } from './IWordPercentage';
import { IWordCount } from './IWordCount';
export interface IStatistics {
wordCount: IWordCount;
wordPercentage: IWordPercentage;
}